1. #Import complex math module
2. Import cmath

a = float(input ( "Enter a;"))

b = float (input ( "Enter b;"))

c = float (input (" Enter c;"))

#calulate the discriminant 

d = (b**2) - (4*a*c)

3. # find two solutions